-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace update_attributes with update #3334
Replace update_attributes with update #3334
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Great change!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. I think there are some renames that shouldn’t be done.
@tvdeyen fixed the ones that were not supposed to be there. :) |
@aldesantis failures seem relevant to the change, can you please take a look when you do have time? |
@kennyadsl we should be good now! I apologize this took three rounds to get right. 🙏 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left a non-blocking comment, thanks a lot @aldesantis!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome. Thanks for working on this 🍰
update_attributes was deprecated in Rails 6 and will be removed in Rails 6.1.
Description
update_attributes
was deprecated in Rails 6 and will be removed in Rails 6.1. This PR replaces all instances ofupdate_attributes
withupdate
.Checklist: